@charset "UTF-8";
/**
 * 隐私政策页面样式
 * 采用现代化设计风格，包含渐变背景和卡片式布局
 */
.privacy-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative; }
  .privacy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none; }

.header_wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px; }
  @media screen and (min-width: 1200px) {
    .header_wrapper {
      width: 70%;
      max-width: 1200px; } }
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .header_wrapper {
      width: 85%;
      max-width: 900px; } }
  @media screen and (max-width: 767px) {
    .header_wrapper {
      width: 95%;
      max-width: none; } }
  .header_wrapper .descrip_block {
    margin-bottom: 40px; }
    .header_wrapper .descrip_block h2 {
      color: #ffffff;
      font-size: 3rem;
      font-weight: 700;
      margin: 0 0 50px 0;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      position: relative; }
      @media screen and (max-width: 767px) {
        .header_wrapper .descrip_block h2 {
          font-size: 2.2rem;
          margin-bottom: 30px; } }
      .header_wrapper .descrip_block h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b6b, #feca57);
        border-radius: 2px; }
    .header_wrapper .descrip_block .policy_section {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      padding: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease; }
      @media screen and (max-width: 767px) {
        .header_wrapper .descrip_block .policy_section {
          padding: 30px 25px;
          border-radius: 15px; } }
      .header_wrapper .descrip_block .policy_section:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); }
      .header_wrapper .descrip_block .policy_section h3 {
        color: #2c3e50;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 35px 0 20px 0;
        position: relative;
        padding-left: 25px; }
        @media screen and (max-width: 767px) {
          .header_wrapper .descrip_block .policy_section h3 {
            font-size: 1.2rem;
            margin: 25px 0 15px 0; } }
        .header_wrapper .descrip_block .policy_section h3:first-child {
          margin-top: 0; }
        .header_wrapper .descrip_block .policy_section h3::before {
          content: '🔒';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          font-size: 1.2rem; }
        .header_wrapper .descrip_block .policy_section h3::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 60px;
          height: 3px;
          background: linear-gradient(90deg, #667eea, #764ba2);
          border-radius: 2px; }
      .header_wrapper .descrip_block .policy_section p {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1rem;
        text-align: left; }
        @media screen and (max-width: 767px) {
          .header_wrapper .descrip_block .policy_section p {
            font-size: 0.95rem;
            line-height: 1.7; } }
        .header_wrapper .descrip_block .policy_section p a {
          color: #667eea;
          text-decoration: none;
          font-weight: 600;
          position: relative;
          transition: all 0.3s ease; }
          .header_wrapper .descrip_block .policy_section p a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease; }
          .header_wrapper .descrip_block .policy_section p a:hover {
            color: #764ba2; }
            .header_wrapper .descrip_block .policy_section p a:hover::after {
              width: 100%; }

@media screen and (max-width: 480px) {
  .privacy-container {
    padding: 60px 0; }
  .header_wrapper .descrip_block .policy_section {
    padding: 25px 20px; }
    .header_wrapper .descrip_block .policy_section h3 {
      font-size: 1.1rem;
      padding-left: 20px; }
    .header_wrapper .descrip_block .policy_section p {
      font-size: 0.9rem; } }

/*# sourceMappingURL=privacy.css.map */